home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / source / gutil / min.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  208 b   |  17 lines

  1. # include    <sccs.h>
  2.  
  3. SCCSID(@(#)min.c    8.1    12/31/84)
  4.  
  5. /*
  6. **  MIN -- return the minimum of two integers.
  7. **
  8. **    Why should I even have to write this????
  9. */
  10.  
  11. min(a, b)
  12. int    a;
  13. int    b;
  14. {
  15.     return ((a < b) ? a : b);
  16. }
  17.